' ----------------------------------
'  Simple Program 3
' ----------------------------------
'  Please open the Debug window
'  with the Right mouse button
'  and use the "Single step" button 
' ----------------------------------

' This program toggles v1 to 0 and 1000 values

If v1 < 500
	v1 = 1000	
Else
	v1 = 0
EndIf	

'WATCH v1
'EXEC v1 = 111 : v2 = 222 : v3 = 333 : v4 = 444
